1   /*
2    * Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
3    * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4    *
5    * This code is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU General Public License version 2 only, as
7    * published by the Free Software Foundation.
8    *
9    * This code is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11   * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12   * version 2 for more details (a copy is included in the LICENSE file that
13   * accompanied this code).
14   *
15   * You should have received a copy of the GNU General Public License version
16   * 2 along with this work; if not, write to the Free Software Foundation,
17   * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18   *
19   * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20   * or visit www.oracle.com if you need additional information or have any
21   * questions.
22   */
23  
24  /*
25   * @test
26   * @bug 4969756
27   * @summary Test that the same native library coming from the same jar file can
28   * be loaded twice by two different MLets on the same JVM without conflict.
29   * @author Luis-Miguel Alventosa
30   * @run clean LibraryLoaderTest
31   * @run build LibraryLoaderTest
32   * @run main LibraryLoaderTest
33   */
34  
35  import java.io.File;
36  import java.util.Set;
37  import javax.management.Attribute;
38  import javax.management.MBeanServer;
39  import javax.management.MBeanServerFactory;
40  import javax.management.ObjectInstance;
41  import javax.management.ObjectName;
42  import javax.management.ReflectionException;
43  
44  public class LibraryLoaderTest {
45  
46      private static final String mletInfo[][] = {
47          {"testDomain:type=MLet,index=0", "UseNativeLib0.html"},
48          {"testDomain:type=MLet,index=1", "UseNativeLib1.html"}
49      };
50  
51      public static void main (String args[]) {
52  
53          String osName = System.getProperty("os.name");
54          System.out.println("os.name=" + osName);
55          String osArch = System.getProperty("os.arch");
56          System.out.println("os.name=" + osArch);
57  
58          // Check for supported platforms:
59          //
60          // Solaris/SPARC and Windows/x86
61          //
62          if ((!(osName.equals("SunOS") && osArch.equals("sparc"))) &&
63              (!(osName.startsWith("Windows") && osArch.equals("x86")))) {
64              System.out.println(
65                "This test runs only on Solaris/SPARC and Windows/x86 platforms");
66              System.out.println("Bye! Bye!");
67              return;
68          }
69  
70          String libPath = System.getProperty("java.library.path");
71          System.out.println("java.library.path=" + libPath);
72          String testSrc = System.getProperty("test.src");
73          System.out.println("test.src=" + testSrc);
74          String workingDir = System.getProperty("user.dir");
75          System.out.println("user.dir=" + workingDir);
76  
77          String urlCodebase;
78          if (testSrc.startsWith("/")) {
79              urlCodebase =
80                  "file:" + testSrc.replace(File.separatorChar, '/') + "/";
81          } else {
82              urlCodebase =
83                  "file:/" + testSrc.replace(File.separatorChar, '/') + "/";
84          }
85  
86          try {
87              // Create MBeanServer
88              //
89              MBeanServer server = MBeanServerFactory.newMBeanServer();
90  
91              // Create MLet instances and call getRandom on the loaded MBeans
92              //
93              for (int i = 0; i < mletInfo.length; i++) {
94                  // Create ObjectName for MLet
95                  //
96                  ObjectName mlet = new ObjectName(mletInfo[i][0]);
97                  server.createMBean("javax.management.loading.MLet", mlet);
98                  System.out.println("MLet = " + mlet);
99  
100                 // Display old library directory and set it to test.classes
101                 //
102                 String libraryDirectory =
103                     (String) server.getAttribute(mlet, "LibraryDirectory");
104                 System.out.println("Old Library Directory = " +
105                                    libraryDirectory);
106                 Attribute attribute =
107                     new Attribute("LibraryDirectory", workingDir);
108                 server.setAttribute(mlet, attribute);
109                 libraryDirectory =
110                     (String) server.getAttribute(mlet, "LibraryDirectory");
111                 System.out.println("New Library Directory = " +
112                                    libraryDirectory);
113 
114                 // Get MBeans from URL
115                 //
116                 String mletURL = urlCodebase + mletInfo[i][1];
117                 System.out.println("MLet URL = " + mletURL);
118                 Object[] params = new Object[] { mletURL };
119                 String[] signature = new String[] {"java.lang.String"};
120                 Object res[] = ((Set) server.invoke(mlet,
121                                                     "getMBeansFromURL",
122                                                     params,
123                                                     signature)).toArray();
124 
125                 // Iterate through all the loaded MBeans
126                 //
127                 for (int j = 0; j < res.length; j++) {
128                     // Now ensure none of the returned objects is a Throwable
129                     //
130                     if (res[j] instanceof Throwable) {
131                         ((Throwable) res[j]).printStackTrace(System.out);
132                         System.out.println("Failed to load the MBean #" + j +
133                                            ". The shown Throwable was caught.");
134                         System.exit(1);
135                     }
136 
137                     // On each of the loaded MBeans, try to invoke their
138                     // native operation
139                     //
140                     Object result = null;
141                     try {
142                         ObjectName mbean =
143                             ((ObjectInstance) res[j]).getObjectName();
144                         result = server.getAttribute(mbean, "Random");
145                         System.out.println("MBean #" + j + " = " + mbean);
146                         System.out.println("Random number = " + result);
147                     } catch (ReflectionException e) {
148                         e.getTargetException().printStackTrace(System.out);
149                         System.out.println("A ReflectionException, wrapping " +
150                                            "the shown exception, occured when" +
151                                            " attempting to invoke a native " +
152                                            "library based operation.");
153                         System.exit(1);
154                     }
155                 }
156             }
157         } catch (Exception e) {
158             e.printStackTrace(System.out);
159             System.out.println(e.getMessage());
160             System.out.println("Unexpected error");
161             System.exit(1);
162         }
163         System.out.println("Bye! Bye!");
164     }
165 }